home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1997 August / Walnut Creek CDROM.7z / VOL_400 / 460_01 / UIDEMO / VISOBJS / EVTPROC.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-02-29  |  262 b   |  19 lines

  1.  
  2. #ifndef _evtproc_h_ /* Sat May 13 09:54:39 1995 */
  3. #define _evtproc_h_
  4.  
  5. #include "ui/dialog.h"
  6.  
  7. class EventProcessor {
  8.  
  9. public:
  10.     EventProcessor (UI_Dialog& mainWindow);
  11.  
  12. protected:
  13.     bool HandleSelectEvent (UI_Event& e);
  14.     
  15. };
  16.  
  17.  
  18. #endif /* _evtproc_h_ */
  19.